A20 - LCS
提出
code: python
s = input()
t = input()
解答
code: python
s = input()
t = input()
dp = [None * (len(t) + 1) for i in range(len(s) + 1)] for i in range(0, len(s)+1):
for j in range(0, len(t)+1):
if i >= 1 and j >= 1 and si-1 == tj-1: elif i >= 1 and j >= 1:
elif i >= 1:
elif j >= 1: